home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / TESTDLL.PAK / TESTDLL.DPR < prev    next >
Text File  |  1997-05-06  |  770b  |  23 lines

  1. library testdll;
  2.  
  3. { Important note about DLL memory management: ShareMem must be the
  4.   first unit in your library's USES clause AND your project's (select
  5.   View-Project Source) USES clause if your DLL exports any procedures or
  6.   functions that pass strings as parameters or function results. This
  7.   applies to all strings passed to and from your DLL--even those that
  8.   are nested in records and classes. ShareMem is the interface unit to
  9.   the DELPHIMM.DLL shared memory manager, which must be deployed along
  10.   with your DLL. To avoid using DELPHIMM.DLL, pass string information
  11.   using PChar or ShortString parameters. }
  12.  
  13. uses
  14.   SysUtils,
  15.   Classes,
  16.   embform in 'embform.pas',
  17.   unit2 in 'unit2.pas' {Form3};
  18.  
  19. exports MakeTestForm;
  20.  
  21. begin
  22. end.
  23.